home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 003 / _gs / !GS / c / ZCHAR < prev    next >
Text File  |  1991-10-25  |  13KB  |  479 lines

  1. /* Copyright (C) 1989, 1990, 1991 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* zchar.c */
  21. /* Character operators for Ghostscript */
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "gxfixed.h"            /* for gstype1.h */
  26. #include "gxmatrix.h"            /* for font.h */
  27. #include "gschar.h"
  28. #include "gstype1.h"
  29. #include "gxdevice.h"            /* for gxfont.h */
  30. #include "gxfont.h"
  31. #include "gzpath.h"            /* for type1addpath: see below */
  32. #include "gzstate.h"
  33. #include "alloc.h"
  34. #include "dict.h"
  35. #include "font.h"
  36. #include "estack.h"
  37. #include "state.h"
  38. #include "store.h"
  39.  
  40. /* All the character rendering operators use the execution stack */
  41. /* for loop control -- see estack.h for details. */
  42. /* The information pushed by these operators is as follows: */
  43. /*    the enumerator (t_string, but points to a gs_show_enum); */
  44. /*    a slot for the procedure for kshow, unused otherwise; */
  45. /*    the procedure to be called at the end of the enumeration */
  46. /*        (t_operator, but called directly, not by the interpreter); */
  47. /*    the usual e-stack mark (t_null). */
  48. #define snumpush 4
  49. #define senum (gs_show_enum *)(esp->value.bytes)
  50. #define sslot esp[-1]
  51. #define seproc esp[-2]
  52.  
  53. /* Imports */
  54. extern int array_get(P3(ref *, long, ref *));
  55. extern ref name_StandardEncoding;
  56.  
  57. /* Forward references */
  58. private int setup_show(P2(ref *, op_proc_p));
  59. private int show_continue(P1(os_ptr));
  60. private int finish_show(P1(os_ptr));
  61. private int finish_stringwidth(P1(os_ptr));
  62. private gs_show_enum *find_show();
  63. private void free_show();
  64.  
  65. /* show */
  66. int
  67. zshow(register os_ptr op)
  68. {    int code = setup_show(op, finish_show);
  69.     if ( code < 0 ) return code;
  70.     if ( (code = gs_show_n_init(senum, igs, (char *)op->value.bytes, r_size(op))) < 0 )
  71.        {    free_show();
  72.         return code;
  73.        }
  74.     pop(1);  op--;
  75.     return show_continue(op);
  76. }
  77.  
  78. /* ashow */
  79. int
  80. zashow(register os_ptr op)
  81. {    int code;
  82.     float axy[2];
  83.     if (    (code = num_params(op - 1, 2, axy)) < 0 ||
  84.         (code = setup_show(op, finish_show)) < 0
  85.        )
  86.         return code;
  87.     if ( (code = gs_ashow_n_init(senum, igs, axy[0], axy[1], (char *)op->value.bytes, r_size(op))) < 0 )
  88.        {    free_show();
  89.         return code;
  90.        }
  91.     pop(3);  op -= 3;
  92.     return show_continue(op);
  93. }
  94.  
  95. /* widthshow */
  96. int
  97. zwidthshow(register os_ptr op)
  98. {    int code;
  99.     float cxy[2];
  100.     check_type(op[-1], t_integer);
  101.     if ( (ulong)(op[-1].value.intval) > 255 ) return e_rangecheck;
  102.     if (    (code = num_params(op - 2, 2, cxy)) < 0 ||
  103.         (code = setup_show(op, finish_show)) < 0
  104.        )
  105.         return code;
  106.     if ( (code = gs_widthshow_n_init(senum, igs, cxy[0], cxy[1],
  107.                      (char)op[-1].value.intval,
  108.                      (char *)op->value.bytes,
  109.                      r_size(op))) < 0 )
  110.        {    free_show();
  111.         return code;
  112.        }
  113.     pop(4);  op -= 4;
  114.     return show_continue(op);
  115. }
  116.  
  117. /* awidthshow */
  118. int
  119. zawidthshow(register os_ptr op)
  120. {    int code;
  121.     float cxy[2], axy[2];
  122.     check_type(op[-3], t_integer);
  123.     if ( (ulong)(op[-3].value.intval) > 255 ) return e_rangecheck;
  124.     if (    (code = num_params(op - 4, 2, cxy)) < 0 ||
  125.         (code = num_params(op - 1, 2, axy)) < 0 ||
  126.         (code = setup_show(op, finish_show)) < 0
  127.        )
  128.         return code;
  129.     if ( (code = gs_awidthshow_n_init(senum, igs, cxy[0], cxy[1],
  130.                       (char)op[-3].value.intval,
  131.                       axy[0], axy[1],
  132.                       (char *)op->value.bytes,
  133.                       r_size(op))) < 0 )
  134.        {    free_show();
  135.         return code;
  136.        }
  137.     pop(6);  op -= 6;
  138.     return show_continue(op);
  139. }
  140.  
  141. /* kshow */
  142. int
  143. zkshow(register os_ptr op)
  144. {    int code;
  145.     check_proc(op[-1]);
  146.     if ( (code = setup_show(op, finish_show)) < 0 ) return code;
  147.     if ( (code = gs_kshow_n_init(senum, igs, (char *)op->value.bytes, r_size(op))) < 0 )
  148.        {    free_show();
  149.         return code;
  150.        }
  151.     sslot = op[-1];        /* save kerning proc */
  152.     pop(2);  op -= 2;
  153.     return show_continue(op);
  154. }
  155.  
  156. /* Common finish procedure for all show operations. */
  157. /* Doesn't have to do anything. */
  158. private int
  159. finish_show(os_ptr op)
  160. {    return 0;
  161. }
  162.  
  163. /* stringwidth */
  164. int
  165. zstringwidth(register os_ptr op)
  166. {    int code = setup_show(op, finish_stringwidth);
  167.     if ( code < 0 ) return code;
  168.     if ( (code = gs_stringwidth_n_init(senum, igs, (char *)op->value.bytes, r_size(op))) < 0 )
  169.        {    free_show();
  170.         return code;
  171.        }
  172.     pop(1);  op--;
  173.     return show_continue(op);
  174. }
  175. /* Finishing procedure for stringwidth. */
  176. /* Pushes the accumulated width. */
  177. private int
  178. finish_stringwidth(register os_ptr op)
  179. {    gs_point width;
  180.     gs_show_width(senum, &width);
  181.     push(2);
  182.     make_real(op - 1, width.x);
  183.     make_real(op, width.y);
  184.     return 0;
  185. }
  186.  
  187. /* charpath */
  188. int
  189. zcharpath(register os_ptr op)
  190. {    int code;
  191.     check_type(*op, t_boolean);
  192.     code = setup_show(op - 1, finish_show);
  193.     if ( code < 0 ) return code;
  194.     if ( (code = gs_charpath_n_init(senum, igs, (char *)op[-1].value.bytes, r_size(op - 1), op->value.index)) < 0 )
  195.        {    free_show();
  196.         return code;
  197.        }
  198.     pop(2);  op -= 2;
  199.     return show_continue(op);
  200. }
  201.  
  202. /* setcachedevice */
  203. int
  204. zsetcachedevice(register os_ptr op)
  205. {    float wbox[6];
  206.     int npop = 6;
  207.     gs_show_enum *penum = find_show();
  208.     int code = num_params(op, 6, wbox);
  209.     if ( penum == 0 ) return e_undefined;
  210.     if ( code < 0 )
  211.        {    /* P*stScr*pt implementations apparently allow the */
  212.         /* bounding box to be specified as a 4-element array. */
  213.         /* Check for this here. */
  214.         check_array(*op);
  215.         if ( r_size(op) != 4 ||
  216.              num_params(op - 1, 2, wbox) < 0 ||
  217.              num_params(op->value.refs + 3, 4, wbox + 2) < 0
  218.            )
  219.             return code;
  220.         npop = 3;
  221.        }
  222.     if ( (code = gs_setcachedevice(penum, igs, wbox[0], wbox[1], wbox[2], wbox[3], wbox[4], wbox[5])) < 0 )
  223.         return code;
  224.     pop(npop);
  225.     return 0;
  226. }
  227.  
  228. /* setcharwidth */
  229. int
  230. zsetcharwidth(register os_ptr op)
  231. {    float width[2];
  232.     gs_show_enum *penum = find_show();
  233.     int code = num_params(op, 2, width);
  234.     if ( penum == 0 ) return e_undefined;
  235.     if (    code < 0 || 
  236.         (code = gs_setcharwidth(penum, igs, width[0], width[1])) < 0
  237.        )
  238.         return code;
  239.     pop(2);
  240.     return 0;
  241. }
  242.  
  243. /* type1addpath */
  244. typedef struct {
  245.     gs_font *pfont;
  246.     fixed *osptr;            /* fake interpreter operand stack */
  247.     fixed ostack[2];
  248. } z1_data;
  249. int
  250. ztype1addpath(register os_ptr op)
  251. {    int code;
  252.     gs_show_enum *penum = find_show();
  253.     gs_font *pfont = gs_currentfont(igs);
  254.     font_data *pfdata = (font_data *)pfont->client_data;
  255.     gs_type1_state *pis;
  256.     fixed discard;
  257.     gs_fixed_point spt, ept;
  258.     int flex_path_was_open;
  259.     gs_type1_data tdata;
  260.     z1_data zdata;
  261.     byte *charstring = 0;
  262.     ref enc_entry;
  263.     if ( penum == 0 ) return e_undefined;
  264.     check_type(*op, t_string);
  265.     tdata = pfont->data.base.type1_data;
  266.     zdata.pfont = pfont;
  267.     zdata.osptr = zdata.ostack;
  268.     tdata.proc_data = (char *)&zdata;
  269.     if ( r_size(op) <= tdata.lenIV )
  270.        {    /* String is empty, or too short.  Just ignore it. */
  271.         pop(1);
  272.         return 0;
  273.        }
  274.     pis = (gs_type1_state *)alloc(1, gs_type1_state_sizeof, "type1addpath");
  275.     if ( pis == 0 ) return e_VMerror;
  276.     code = gs_type1_init(pis, penum,
  277.                  gs_show_in_charpath(penum), tdata.PaintType,
  278.                  op->value.bytes,
  279.                  &tdata);
  280.     if ( code < 0 )
  281.        {    alloc_free((char *)pis, 1, gs_type1_state_sizeof, "type1addpath");
  282.         return code;
  283.        }
  284. more:    code = gs_type1_interpret(pis, charstring);
  285.     charstring = 0;
  286.     if ( code > 0 )            /* seac or callothersubr */
  287.      { if ( code & 1)        /* seac */
  288.         {    ref *pstdenc, *pcstr;
  289.         code >>= 1;
  290.         if ( dict_find(&systemdict,
  291.                    &name_StandardEncoding, &pstdenc) <= 0 )
  292.             return e_undefined;
  293.         code = array_get(pstdenc, (long)code, &enc_entry);
  294.         if ( code < 0 ) return code;
  295.         if ( dict_find(&pfdata->CharStrings,
  296.                    &enc_entry, &pcstr) <= 0 )
  297.             return e_undefined;
  298.         if ( !r_has_type(pcstr, t_string) )
  299.             return e_invalidfont;
  300.         charstring = pcstr->value.bytes;
  301.         goto more;
  302.         }
  303.       else                /* callothersubr */
  304.         {    /* We aren't prepared to call the interpreter here, */
  305.         /* so we fake the Flex feature. */
  306.         gx_path *ppath = igs->path;
  307.         gs_type1_pop(pis, &discard);    /* pop # of args */
  308.         switch ( (code >> 1) - 1 )
  309.            {
  310.         case 0:
  311.             /* We have to do something really sleazy here, */
  312.             /* namely, make it look as though the rmovetos */
  313.             /* never really happened, because we don't want */
  314.             /* to interrupt the current subpath. */
  315.             gx_path_current_point(ppath, &ept);
  316.             gx_path_add_point(ppath, spt.x, spt.y);
  317.             ppath->subpath_open = flex_path_was_open;
  318.                     /* ^--- sleaze */
  319.             gx_path_add_line(ppath, ept.x, ept.y);
  320.             /* Transfer endpoint coordinates to 'ostack' */
  321.             gs_type1_pop(pis, &zdata.ostack[0]);
  322.             gs_type1_pop(pis, &zdata.ostack[1]);
  323.             gs_type1_pop(pis, &discard);
  324.             zdata.osptr = &zdata.ostack[2];
  325.             goto more;
  326.         case 1:
  327.             gx_path_current_point(ppath, &spt);
  328.             flex_path_was_open = ppath->subpath_open;
  329.                     /* ^--- more sleaze */
  330.             goto more;
  331.         case 2:
  332.             goto more;
  333.         case 3:
  334.             gs_type1_pop(pis, &discard);    /* pop subr# */
  335.             zdata.ostack[0] = int2fixed(3);
  336.             zdata.osptr = &zdata.ostack[1];
  337.             goto more;
  338.            }
  339.         /* Unrecognized othersubr */
  340.         code = e_rangecheck;
  341.         }
  342.      }
  343.     alloc_free((char *)pis, 1, gs_type1_state_sizeof, "type1addpath");
  344.     if ( code >= 0 ) pop(1);
  345.     return code;
  346. }
  347.  
  348. /* type1imagepath */
  349. int
  350. ztype1imagepath(register os_ptr op)
  351. {    float woxy[4];
  352.     int code;
  353.     check_type(op[-7], t_string);
  354.     check_type(op[-6], t_integer);
  355.     check_type(op[-5], t_integer);
  356.     if ( (code = num_params(op - 1, 4, woxy)) < 0 ) return code;
  357.     check_write_type(*op, t_string);
  358.     code = gs_type1imagepath(igs, op[-7].value.bytes,
  359.         (int)op[-6].value.intval, (int)op[-5].value.intval,
  360.         woxy[0], woxy[1], woxy[2], woxy[3],
  361.         op->value.bytes, r_size(op));
  362.     if ( code < 0 ) return code;
  363.     op[-7] = *op;
  364.     r_set_size(op - 7, code);
  365.     pop(7);
  366.     return 0;
  367. }
  368.  
  369. /* ------ Auxiliary procedures for type 1 fonts ------ */
  370.  
  371. int
  372. z1_subr_proc(gs_type1_data *pdata, int index, byte **pstr)
  373. {    gs_font *pfont = ((z1_data *)(pdata->proc_data))->pfont;
  374.     font_data *pfdata = (font_data *)(pfont->client_data);
  375.     ref *psubr;
  376.     if ( index < 0 || index >= r_size(&pfdata->Subrs) )
  377.         return e_rangecheck;
  378.     psubr = pfdata->Subrs.value.refs + index;
  379.     check_type(*psubr, t_string);
  380.     *pstr = psubr->value.bytes;
  381.     return 0;
  382. }
  383.  
  384. int
  385. z1_pop_proc(gs_type1_data *pdata, fixed *pf)
  386. {    *pf = *--(((z1_data *)(pdata->proc_data))->osptr);
  387.     return 0;
  388. }
  389.  
  390. /* ------ Initialization procedure ------ */
  391.  
  392. op_def zchar_op_defs[] = {
  393.     {"3ashow", zashow},
  394.     {"6awidthshow", zawidthshow},
  395.     {"2charpath", zcharpath},
  396.     {"2kshow", zkshow},
  397.     {"3setcachedevice", zsetcachedevice},
  398.     {"2setcharwidth", zsetcharwidth},
  399.     {"1show", zshow},
  400.     {"1stringwidth", zstringwidth},
  401.     {"1type1addpath", ztype1addpath},
  402.     {"8type1imagepath", ztype1imagepath},
  403.     {"4widthshow", zwidthshow},
  404.     op_def_end(0)
  405. };
  406.  
  407. /* ------ Internal routines ------ */
  408.  
  409. /* Set up for a show operator. */
  410. /* The top stack element must be the string to be scanned. */
  411. /* The caller has already done all other argument checking. */
  412. private int
  413. setup_show(ref *op, op_proc_p endproc /* end procedure */)
  414. {    gs_show_enum *penum;
  415.     check_read_type(*op, t_string);
  416.     check_estack(snumpush + 2);
  417.     if ( (penum = (gs_show_enum *)alloc(1, gs_show_enum_sizeof, "setup_show")) == 0 )
  418.         return e_VMerror;
  419.     mark_estack(es_show);
  420.     push_op_estack(endproc);
  421.     ++esp;
  422.     make_tv(esp, t_null, index, 0);        /* reserve slot */
  423.     ++esp;
  424.     make_tasv(esp, t_string, 0, gs_show_enum_sizeof, bytes, (byte *)penum);
  425.     return o_check_estack;
  426. }
  427.  
  428. /* Continuation operator for character rendering. */
  429. private int
  430. show_continue(register os_ptr op)
  431. {    gs_show_enum *penum = senum;
  432.     int code = gs_show_next(penum);
  433.     switch ( code )
  434.        {
  435.     case 0:                /* all done */
  436.         code = (*real_opproc(&seproc))(op);
  437.         free_show();
  438.         return (code >= 0 ? o_check_estack : code);
  439.     case gs_show_kern:
  440.        {    ref *pslot = &sslot;
  441.         push(2);
  442.         make_int(op - 1, gs_kshow_previous_char(penum));
  443.         make_int(op, gs_kshow_next_char(penum));
  444.         push_op_estack(show_continue);        /* continue after kerning */
  445.         *++esp = *pslot;    /* kerning procedure */
  446.        }
  447.         return o_check_estack;
  448.     case gs_show_render:
  449.        {    font_data *pfont = (font_data *)gs_currentfont(igs)->client_data;
  450.         push(2);
  451.         op[-1] = pfont->dict;    /* push the font */
  452.         make_int(op, gs_show_current_char(penum));
  453.         push_op_estack(show_continue);
  454.         *++esp = pfont->BuildChar;
  455.        }
  456.         return o_check_estack;
  457.     default:            /* error */
  458.         free_show();
  459.         return code;
  460.        }
  461. }
  462.  
  463. /* Find the current show enumerator on the e-stack. */
  464. private gs_show_enum *
  465. find_show()
  466. {    es_ptr ep = esp;
  467.     while ( !(r_has_type(ep, t_null) && ep->value.index == es_show) )
  468.        {    if ( --ep < esbot ) return 0;    /* no mark */
  469.        }
  470.     return (gs_show_enum *)ep[snumpush - 1].value.bytes;
  471. }
  472.  
  473. /* Discard the show record (after an error, or at the end). */
  474. private void
  475. free_show()
  476. {    alloc_free((char *)senum, 1, gs_show_enum_sizeof, "free_show");
  477.     esp -= snumpush;
  478. }
  479.